home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / JM_FsSniffer.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  48 lines

  1. #
  2. # This script was written by Joseph Mlodzianowski <joseph@rapter.net>
  3.  
  4. if(description)
  5. {
  6.  
  7. script_id(11854);
  8. script_version ("$Revision: 1.2 $");
  9. name["english"] = "FsSniffer Detection";
  10. script_name(english:name["english"]);
  11.  
  12. desc["english"] = "
  13. This host appears to be running FsSniffer on this port.
  14.  
  15. FsSniffer is backdoor which allows an intruder to steal
  16. PoP3/FTP and other passwords you use on your system.
  17.  
  18. An attacker may use it to steal your passwords.
  19.  
  20. Solution : see www.rapter.net/jm1.htm for details on removal
  21. Risk factor : High";
  22.  
  23. script_description(english:desc["english"]);
  24.  
  25. summary["english"] = "Determines the presence of FsSniffer";
  26.  
  27. script_summary(english:summary["english"]);
  28.  
  29. script_category(ACT_GATHER_INFO);
  30.  
  31.  
  32. script_copyright(english:"This script is Copyright (C) 2003 J.Mlodzianowski");
  33. family["english"] = "Backdoors";
  34. script_family(english:family["english"]);
  35. script_dependencie("find_service2.nasl");
  36. exit(0);
  37. }
  38.  
  39.  
  40. #
  41. # The code starts here
  42. #
  43.  
  44. port =  get_kb_item("Services/RemoteNC");
  45. if(port)security_hole(port);
  46.